Structures and Arrays
Initialisation
wA C structure variable may be initialised when it is declared – e.g.
struct {
char *city;
   int phone;
} book[] = {“London”, 563445,
“Edinburgh”, 67023,
“Cardiff”, 79843
        };